require(readr)
require(dplyr)
require(ggplot2)
require(tibble)
require(data.table)
require(gridExtra)
Note: I’m skipping over purrr until @kellieotto returns from her travels, so we can write our joint post.
This week’s post is on tibbles. This actually came at a perfect time since recently I’ve run into a few mysteries where I get unexpected errors or output after a data frame gets turned into a tibble at some point during my workflow (like when I use functions from the tidyverse). This is actually a good sign because it means I’m using the tidyverse more in my day to day work. So now to solve some tibble troubles.